home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Demos / AppMaker 2.0b3 / Demo AppMaker 1.5 / Demo AppMaker™ / Demo AppMaker™.rsrc / TmC3_205_Dialog.h < prev    next >
Encoding:
Text File  |  1992-04-08  |  789 b   |  49 lines

  1. // %filename% -- dialog 
  2. // Created %date% %time% by AppMaker 
  3.  
  4. #ifndef __U%dlogname%__
  5. #define __U%dlogname%__
  6.  
  7. #ifndef __MACAPP__
  8. #include <MacApp.h>
  9. #endif
  10.  
  11. #ifndef __UGridView__
  12. #include <UGridView.h>
  13. #endif
  14.  
  15. #ifndef __UTEView__
  16. #include <UTEView.h>
  17. #endif
  18.  
  19. #ifndef __UDialog__
  20. #include <UDialog.h>
  21. #endif
  22.  
  23. #ifndef __UEVENT__
  24. #include <UEvent.h>
  25. #endif
  26.  
  27. #ifndef __UAMLibraryM__
  28. #include <UAMLibraryM.h>
  29. #endif
  30.  
  31. //----------
  32. class T%dlogname% : public TDialogView {
  33. public:
  34.     virtual pascal void DoEvent        (EventNumber    eventNumber,
  35.                                      TEventHandler    *source, 
  36.                                       TEvent            *event);    // is override
  37. }; /* T%dlogname% */
  38.  
  39. %for each item gen classDecl%
  40. //----------
  41. %if modeless%
  42.     TWindow *New%dlogname%    (void);
  43. %else%
  44.     void Do%dlogname%    (void);
  45. %endif%
  46.  
  47. /* %unitname% */
  48. #endif
  49.